Skip to content

Instantly share code, notes, and snippets.

Use pnpm. Don't use npx or npm on your own — only when they're defined in .mcp.json.

If an MCP server fails to connect (e.g. /mcp shows an error like ENOENT), warn the user about it.

When debugging an issue (e.g. a Sentry event), consider whether the bug is in the library or framework itself. If so, ask before digging in.

If requested, attribute yourself in the commit message body in this format:

Assisted-by: AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]
@frozenpandaman
frozenpandaman / widevine-decryption.md
Last active August 9, 2026 05:35
download videos protected with widevine DRM
@Maciejdziuba
Maciejdziuba / README.md
Last active August 9, 2026 05:28
The Software Factory Playbook — Dex Horthy's 4-gate workflow (Product → Architecture → Program Design → Vertical Slices) as an installable Claude Code skill. From the Dex Horthy episode on David Ondrej's podcast.

The Software Factory Playbook — Dex Horthy's 4-gate workflow as a skill

A Claude Code Agent Skill built from Dex Horthy's (HumanLayer) playbook on David Ondrej's podcast.

"Once the model has written thousands of lines of code, it is harder to change. The sessions that generate design docs are context-light — you get the most model intelligence when you do the hard thinking early."

By default, agents build horizontally: all the backend, then all the frontend, then a 2,000-line diff lands in your lap and reviewing it is your problem. This skill flips that. Every decision that matters gets made before the code exists — where changing your mind costs a sentence, not a rewrite.

What it does

@dori4n
dori4n / Office 2024 ISO Links at Microsoft.md
Created January 13, 2025 06:30
Office 2024 ISO Download Links at Microsoft
@methanoliver
methanoliver / doc.md
Created October 18, 2022 06:16
DuckyScript commands supported by Flipper's BadUSB

DuckyScript commands supported by Flipper's BadUSB

Explanations are only given for commands not present in the original DuckyScript, for everything else refer to DuckyScript documentation.

Keys

These mean exactly what one would expect and should need no further explanation.

  • Modifiers: CTRL, CONTROL, SHIFT, ALT, GUI, WINDOWS
  • Combos: CTRL-ALT, CTRL-SHIFT, ALT-SHIFT, ALT-GUI, GUI-SHIFT
@dbilanoski
dbilanoski / windows11-shell-folders-by-clsid.csv
Last active August 9, 2026 05:21
Complete List Of Windows 11 Shell Folders By CLSID GUIDs
Name Shell Command Shortcut
%UserProfile% explorer "shell:::{59031a47-3f72-44a7-89c5-5595fe6b30ee}"
%UserProfile%\Desktop explorer "shell:::{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}"
%UserProfile%\Documents explorer "shell:::{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}"
%UserProfile%\Downloads explorer "shell:::{088e3905-0323-4b02-9826-5d99428e115f}"
%UserProfile%\Pictures explorer "shell:::{24ad3ad4-a569-4530-98e1-ab02f9417aa8}"
Add Network Location explorer "shell:::{D4480A50-BA28-11d1-8E75-00C04FA31A86}"
Additional Information explorer "shell:::{C58C4893-3BE0-4B45-ABB5-A63E4B8C8651}\resultPage"
Advanced Problem Reporting Settings explorer "shell:::{BB64F8A7-BEE7-4E1A-AB8D-7D8273F7FDB6}\pageAdvSettings"
Advanced sharing settings explorer "shell:::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}\Advanced"
@ejdyksen
ejdyksen / patch-edid.md
Last active August 9, 2026 05:20
A script to fix EDID problems on external monitors in macOS

patch-edid.rb

A script to fix EDID problems on external monitors in macOS.

Instructions

  1. Connect only the problem display.

  2. Create this directory structure (if it doesn't already exist):

#!/usr/bin/ruby
# Create display override file to force Mac OS X to use RGB mode for Display
# see http://embdev.net/topic/284710
require 'base64'
data=`ioreg -l -d0 -w 0 -r -c AppleDisplay`
edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten
vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten
@ahvin2020
ahvin2020 / ibkr-claude-prompts.md
Created June 27, 2026 23:21
IBKR + Claude — 6 copy-paste prompts (portfolio X-ray, stock hunt, 1-yr outlook, daily brief, options manager, options spotter)

IBKR + Claude — Round 2: the 6 prompts (copy-paste)

1 — Portfolio X-ray dashboard (visual + actionable)

Connect to my IBKR account and build me an actionable portfolio X-ray as a
self-contained HTML dashboard I can open in my browser.

GOLDEN RULE — be GRAPHICAL-FIRST: show every piece of information as a visual
(chart, gauge, heatmap, treemap, colored badge, progress bar, or sparkline)